home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 27 / CU Amiga Magazine's Super CD-ROM 27 (1998)(EMAP Images)(GB)[!][issue 1998-10].iso / CUCD / PowerPC / vbcc / machines / amigawos / libsrc / stdio / __v2printf.c < prev    next >
C/C++ Source or Header  |  1998-08-02  |  219b  |  13 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3.  
  4. int __v2printf(const char *format,...)
  5. {
  6.     int n;va_list vl;
  7.     va_start(vl,format);
  8.     n=__v2vfprintf(stdout,format,vl);
  9.     va_end(vl);
  10.     fflush(stdout);
  11.     return(n);
  12. }
  13.